From e65026569ef328c5cfe89eb37dc57e375a14b2aa Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Tue, 27 Jan 2009 11:45:59 +0000 Subject: [PATCH] x86: clean up struct page_info Remove the now unnecessary (and leading to misalignment of cpumask on x86-64) 'packed' attributes. Signed-off-by: Jan Beulich --- xen/include/asm-x86/mm.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xen/include/asm-x86/mm.h b/xen/include/asm-x86/mm.h index 7690285b89..4b1ca36286 100644 --- a/xen/include/asm-x86/mm.h +++ b/xen/include/asm-x86/mm.h @@ -34,7 +34,7 @@ struct page_info unsigned long _domain; /* pickled format */ /* Type reference count and various PGT_xxx flags and fields. */ unsigned long type_info; - } __attribute__ ((packed)) inuse; + } inuse; /* Page is on a free list: ((count_info & PGC_count_mask) == 0). */ struct { @@ -42,7 +42,7 @@ struct page_info u32 order; /* Mask of possibly-tainted TLBs. */ cpumask_t cpumask; - } __attribute__ ((packed)) free; + } free; } u; -- 2.30.2